home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-in_the_mag-
/
reader_requests
/
dice_v3.15
/
lib
/
extra
/
os20.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-26
|
512b
|
30 lines
/*
* OS20.C
*
* (c)Copyright 1992-1997 Obvious Implementations Corp. Redistribution and
* use is allowed under the terms of the DICE-LICENSE FILE,
* DICE-LICENSE.TXT.
*/
#include <exec/types.h>
#include <exec/libraries.h>
#include <clib/dos_protos.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
extern struct Library *SysBase;
void
OS2_0()
{
char *str = "Runs under 2.0 only\n";
if (SysBase->lib_Version < 36) {
Write(Output(), str, strlen(str));
exit(1);
}
}